home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / os2 / inadv023.zip / parseurl.cmd < prev    next >
OS/2 REXX Batch file  |  1996-06-01  |  394b  |  15 lines

  1. /*
  2. **
  3. ** PARSEURL.CMD - Sample REXX script which is executed whenever an URL needs
  4. **                to be processed. The script must return "" if the URL should
  5. **                not be processed by inetadv, or return the URL to be processed.
  6. */
  7. Parse Arg url
  8.  
  9. if (url = "ftp://hobbes") then do
  10.    'start /F /N "FTP Client" ftp.exe hobbes.nmsu.edu'
  11.    return ""
  12. end
  13.  
  14. return url
  15.